home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / utilities / heartbeat.lha / HeartBeat / makefile < prev    next >
Makefile  |  1994-05-29  |  798b  |  35 lines

  1. #######################################################################
  2. # Makefile for HEARTBEAT            (C) L. Vanhelsuwé
  3. # ----------------------            -----------------
  4. # 19-MAY-1994
  5. #
  6. #######################################################################
  7.  
  8. PROGRAM = HB
  9.  
  10. ASDIR = B:DEVEL/Devpac
  11. ASSEM = $(ASDIR)/Genam
  12.  
  13. # List all the object modules that are needed to build $(PROGRAM)
  14. # (Order is not important since that's handled by .WTH file passed to BLink)
  15.  
  16. OBJ = HB.o func.o cload_file.o
  17.  
  18. .s.o:
  19.     $(ASSEM) $* -VP=68030 -D -L -Iinclude: -H$(ASDIR)/system2.gs
  20. .c.o:
  21.     SC:C/sc $*.c 
  22.  
  23. $(PROGRAM):  $(OBJ) 
  24.     SC:C/slink WITH HB.wth
  25.  
  26. # First of all the dependencies of the program modules
  27.  
  28. func.o:        INCLUDE:std
  29.  
  30. # Then finally the dependencies for the main module.
  31.  
  32. HB.o:        SCOPTIONS
  33.  
  34. cload_file.o:    SCOPTIONS
  35.